home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr09 / ttcstt.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-06-08  |  1KB  |  35 lines

  1. Echo off
  2. REM -- Install batch file for the (TTCS) Tiny Tafel Collection
  3.  
  4. CLS
  5. IF %1!==! GOTO NODRIVE
  6. ECHO This is the INSTALL.BAT file for the (TTCS) Tiny Tafel Collection. This
  7. ECHO routine will copy the files into your TTEDIT subdirectory on your hard
  8. ECHO drive %1 for you.  If the TTEDIT subdirectory does not exist, it will
  9. ECHO create it for you.
  10. ECHO;
  11. ECHO If you do -not- wish to do this, press CTRL-BREAK now and answer Yes to
  12. ECHO terminate this routine.  Otherwise...
  13. ECHO;   
  14. ECHO;   
  15. PAUSE
  16. MKDIR %1\TTEDIT
  17. COPY TTCS.* %1\TTEDIT
  18. CLS
  19. ECHO The Tiny Tafel Collection has been copied onto your hard disk.  If you
  20. ECHO are using the Tiny Tafel Editor, load your TT into it and then press
  21. ECHO Alt-M to do a matching report.  Tell it to match with the file TTCS.TT
  22. ECHO;
  23. ECHO If you are not using the Tiny Tafel Editor, you can view the tiny tafels
  24. ECHO by using the dos TYPE command or a text editor.  Most word processors can
  25. ECHO also view it.
  26. ECHO;    
  27. GOTO END
  28.  
  29. :NODRIVE
  30. ECHO You must specify the letter of the hard disk that you want the Tiny Tafel
  31. ECHO Collection copied onto.  Example:  INSTALL C:
  32. ECHO   
  33.  
  34. :END
  35.